home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 12263 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  886 b 

  1. Path: ix.netcom.com!news
  2. From: jdmorris@ix.netcom.com (Jason D. Morris)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: HELP how to go from a.out back to C++
  5. Date: Tue, 19 Mar 1996 02:48:26 GMT
  6. Organization: Netcom
  7. Message-ID: <314e1fdc.19684144@nntp.ix.netcom.com>
  8. References: <4iksh6$40s@coranto.ucs.mun.ca>
  9. NNTP-Posting-Host: pon-mi3-04.ix.netcom.com
  10. X-NETCOM-Date: Mon Mar 18  8:50:09 PM CST 1996
  11. X-Newsreader: Forte Agent .99d/32.182
  12.  
  13. On 18 Mar 1996 23:44:38 GMT, kjessani@morgan.ucs.mun.ca (Karim
  14. Jessani) wrote:
  15.  
  16. >I want to know...how can i go back from an exectuable file...back to my original 
  17. >c++ code....
  18.  
  19. It can't be done.  When your C++ code is translated to
  20. assembler/machine code.  The high level class structure and variable
  21. names are stripped away, not to mention the effect compiler
  22. optimizations would have.  The best you can hope for is to get an
  23. assembler listing.
  24.  
  25. Jason
  26.  
  27.